pp108 : CreateDSO (Deprecated)

CreateDSO (Deprecated)


This Web service operation is used to create a Database Configuration by Administrators.

SOAP Request

<CreateDSO xmlns="http://schemas.cordys.com/DSOConfig/1.0">
    <dso xmlns="http://schemas.cordys.com/DSOConfig/1.0">
        <name>TEst#system</name>
        <type>Relational</type>
        <description>TEst</description>
        <configuration>
            <component name="Connection pool">
                <provider>SQLOLEDB</provider>
                <driverName>OLEDB</driverName>
                <defaultDatabase>OLEDB</defaultDatabase>
                <server>TestServer</server>
                <userName>username</userName>
                <password>pwd</password>
            </component>
        </configuration>
    </dso>
</CreateDSO>

Request Parameters

Parameter

Description

Data Type

Accepted Input Values

name

Name of the database configuration

String

-

type

Indicates the type of database configuration

String

Relational

description

Description of the database configuration

String

-

configuration

Indicates the configuration details of the database

  • provider
  • driverName - OLEDB or JDBC
  • defaultDatabase
  • server
  • userName
  • password

SOAP Response

<CreateDSOResponse xmlns="http://schemas.cordys.com/DSOConfig/1.0" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/">
    <dso xmlns="http://schemas.cordys.com/DSOConfig/1.0" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/">
        <name>TEst#system</name>
        <type>Relational</type>
        <description>TEst</description>
        <configuration>
            <component name="Connection pool">
                <provider>SQLOLEDB</provider>
                <driverName>OLEDB</driverName>
                <defaultDatabase>OLEDB</defaultDatabase>
                <server>TestServer</server>
                <userName>username</userName>
                <password>pwd</password>
            </component>
        </configuration>
    </dso>
</CreateDSOResponse>